home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / xlib04.zip / MODEL.INC < prev    next >
Text File  |  1992-11-04  |  489b  |  21 lines

  1. IFDEF s
  2.   DISPLAY "XLIB04 Small Model"
  3.   .model small
  4. ELSE
  5.   IFDEF c
  6.     DISPLAY "XLIB04 Compact Model"
  7.     .model compact
  8.   ELSE
  9.      IFDEF l
  10.        DISPLAY "XLIB04 Large Model"
  11.       .model large
  12.      ELSE
  13.        DISPLAY "WARNING: Model was not defined at the command line."
  14.        DISPLAY "         Using default small model ie /ds         "
  15.        DISPLAY "         Include in TASM commandline either /ds, /dc or /dl"
  16.        .model small
  17.      ENDIF
  18.   ENDIF
  19. ENDIF
  20.  
  21.